home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software 2000
/
Software 2000 Volume 1 (Disc 1 of 2).iso
/
utilities
/
u267.dms
/
u267.adf
/
DOC9110B.LZH
/
ar.man
next >
Wrap
Text File
|
1991-10-12
|
1KB
|
37 lines
AR
==
Archiver for LD-style object files.
Format:
ar command [modifiers] archive [file ...]
Commands (one only):
d delete the named files.
m move the named files to the end of the archive (not of much
interest to us, given the 's' modifier).
p extract the named files to standard output.
q quick append (ie, don't search for duplicates).
r replace the named files.
t display table of contents (if no names given, all files shown).
x extract files (if no names given, all files).
Modifiers:
a pn [r, m only] move 'file' to after member 'pn'.
b pn [r, m only] move 'file' to before member 'pn'.
c if 'archive' has to be created, be quiet about it.
i pn same as b.
o retain original file date when extracting.
s generate a SYMDEF entry (as RANLIB would; allows single-pass
link without special ordering). Don't use this with 'q' unless
you are only entering one set of files (ie, unless the archive
is being created in one operation).
u [r only] replace only changed files.
v be verbose.
Note that only one of a, b, i can be given and 'pn' must be after: eg,
> ar mbv pn archive file
moves 'file' before 'pn' in 'archive' verbosely.